-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WORK IN PROGRESS: test linting #21
base: main
Are you sure you want to change the base?
Conversation
8894d7e
to
d84d7e5
Compare
6ccb1c2
to
401dd93
Compare
0ba6513
to
c64617b
Compare
225d1fe
to
e1e333e
Compare
@pytest.fixture | ||
def broker(): | ||
def broker() -> Broker: | ||
return Broker() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pytest.fixture(name="broker")
def broker_fixture() -> Broker:
return Broker()
this way we can remove # pylint: disable=W0621
.venv | ||
__pycache__ | ||
.* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we should ignore all dot files, lets remove ".*"
python/=0.1.8
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like it was added by mistake, remove it
fix: address pylint warnings fix: address pylint warnings
No description provided.